home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-2.iso / bbs / hsb10a.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1995-11-08  |  655b  |  30 lines

  1. @echo off
  2. cls
  3. if %1x == x goto help
  4. if %2x == x goto help
  5. echo .
  6. echo .
  7. echo .
  8. echo .
  9. echo This will copy the Handy Stuff files from %1 to %2\hndystuf
  10. echo Press Ctrl Break to abort or any other key to continue.
  11. pause >nul
  12. md %2\hndystuf
  13. copy %1*.* %2\hndystuf
  14. %2
  15. cd\hndystuf
  16. install2 %1 %2
  17. goto END
  18. :help
  19. cls
  20. echo .
  21. echo .
  22. echo .
  23. echo HANDY STUFF Installation
  24. echo ---------------------------------------
  25. echo Usage: INSTALL [source:] [destination:]
  26. echo ---------------------------------------
  27. echo Example:  INSTALL A: C:  -- Will install HANDY STUFF to the C: drive
  28. echo                             from the A: drive
  29. :END
  30.